home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000053_news@columbia.edu _Wed Oct 4 18:39:09 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by fozimane.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id SAA22308
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Wed, 4 Oct 2000 18:39:08 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA22778
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 4 Oct 2000 18:39:07 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id SAA26708
  10.     for kermit.misc@watsun.cc.columbia.edu; Wed, 4 Oct 2000 18:36:49 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: jaltman@columbia.edu (Jeffrey Altman)
  13. Subject: Re: No Carrier
  14. Date: 4 Oct 2000 22:36:49 GMT
  15. Organization: Columbia University
  16. Message-ID: <8rgbe1$q2h$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <YaOC5.4391$bI6.264432@news1.giganews.com>,
  20. Steve <steve@baus-systems.com> wrote:
  21. : I have software that runs on DOS computers that uses Kermit 3.15 to transfer
  22. : files to a server running a DOS application under Windows 95 also using
  23. : Kermit 3.15.  The DOS computer initiates everything, the connection, the
  24. : file transfers, etc.  The files are either transferred locally using a
  25. : serial cable or remotely over a modem.  Everything works fine.  We are
  26. : trying to switch from 3.15 on the server to K95 to allow multiple transfers
  27. : on the same server at a time and have created the server program using VB.
  28. : It seems to work fine except over a modem.  After the DOS computer calls in
  29. : and connects, the first thing it does is issue a FIN to reset the server in
  30. : case the previous transfer did not go to completion.  In the K95 version
  31. : over a modem, I always get a no carrier on the DOS computer immediately
  32. : after the FIN as the modem on the server side appears to drop the
  33. : connection.  I can tell the server did get the FIN and the DOS computer
  34. : should pause for a couple of seconds before issuing the next command.
  35. : We are using a shell command to call K95 that looks like:
  36. : For the modem file transfer the .ini file looks like:
  37. : set carrier off
  38. : set port 1
  39. : set speed 9600
  40. : set incomplete discard
  41. : set send packet 94
  42. : set retry 60
  43. : set flow xon/xoff
  44. : set handshake none
  45. : set duplex full
  46. : output AT s0=1\13
  47. : output AT s37=9\13
  48. : server
  49. : exit
  50. : The dial string we use on the DOS computer side is:
  51. : output AT&F&C0&D1s37=9N0DT [phone number]\13
  52. : Any ideas on why I am dropping the line?  Any suggestions on better settings
  53. : on either the server or DOS side?
  54. : Thanks,
  55. : Steve
  56.  
  57. The FINISH command sent by the client and received by the SERVER causes
  58. the SERVER command to terminate.  Therefore, the EXIT command is executed
  59. and the K95 session terminates hanging up the modem
  60.  
  61. There is no need for the FINISH command to be sent, if the previous 
  62. session was closed prematurely by the client the SERVER command would 
  63. be automaticly terminated when the carrier signal was lost by the modem.
  64.  
  65. Also, instead of using OUTPUT AT ... just configure the modem with the 
  66. proper SET MODEM TYPE command and use the ANSWER command to receive the
  67. incoming call.
  68.  
  69.                   Jeffrey Altman * Sr.Software Designer
  70.                  The Kermit Project * Columbia University
  71.                612 West 115th St * New York, NY * 10025 * USA
  72.      http://www.kermit-project.org/ * kermit-support@kermit-project.org